home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Programming / LEDA / incl / LEDA.020+881 / plane.h < prev    next >
C/C++ Source or Header  |  1994-08-05  |  566b  |  28 lines

  1. /*******************************************************************************
  2. +
  3. +  LEDA  3.1c
  4. +
  5. +
  6. +  plane.h
  7. +
  8. +
  9. +  Copyright (c) 1994  by  Max-Planck-Institut fuer Informatik
  10. +  Im Stadtwald, 6600 Saarbruecken, FRG     
  11. +  All rights reserved.
  12. *******************************************************************************/
  13.  
  14.  
  15. #ifndef LEDA_PLANE_H
  16. #define LEDA_PLANE_H
  17.  
  18. #include <LEDA/point.h>
  19. #include <LEDA/segment.h>
  20. #include <LEDA/line.h>
  21. #include <LEDA/circle.h>
  22. #include <LEDA/polygon.h>
  23.  
  24. extern line p_bisector(const point& p, const point& q);
  25.  
  26. #endif
  27.